home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 426-450 / disk_443 / dice / dice.lzh / include / setjmp.h < prev    next >
C/C++ Source or Header  |  1990-08-02  |  220b  |  18 lines

  1.  
  2. /*
  3.  *  SETJMP.H
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #ifndef _SETJMP_H
  9. #define _SETJMP_H
  10.  
  11. typedef long jmp_buf[16];
  12.  
  13. extern int setjmp(jmp_buf);
  14. extern void longjmp(jmp_buf, int);
  15.  
  16. #endif
  17.  
  18.